home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / Compilers / digital marsC compier / dm / include / Clib.h < prev    next >
Encoding:
C/C++ Source or Header  |  2001-03-16  |  262 b   |  16 lines

  1. /* Copyright (C) 1986-2001 by Digital Mars. $Revision: 1.1.1.1 $ */
  2. #if __SC__ || __RCC__
  3. #pragma once
  4. #endif
  5.  
  6. #ifndef __CLIB_H
  7. #define __CLIB_H 1
  8.  
  9. #if __OS2__ && __INTSIZE == 4
  10. #define __CLIB    __stdcall
  11. #else
  12. #define __CLIB    __cdecl
  13. #endif
  14.  
  15. #endif
  16.